home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 3: Developer Tools / Linux Cubed Series 3 - Developer Tools.iso / utils / file / managers / mc-3.2 / mc-3 / mc-3.2.1 / src / help.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-05-17  |  868 b   |  32 lines

  1. #ifndef __HELP_H
  2. #define __HELP_H
  3.  
  4. /* This file is included by help.c and man2hlp.c */
  5.  
  6. /* Some useful constants */
  7. #define CHAR_NODE_END        '\04'
  8. #define CHAR_LINK_START        '\01'
  9. #define CHAR_LINK_POINTER    '\02'
  10. #define CHAR_LINK_END        '\03'
  11. #define CHAR_ALTERNATE        '\05'
  12. #define CHAR_NORMAL        '\06'
  13. #define CHAR_VERSION        '\07'
  14. #define CHAR_BOLD_ON        '\010'
  15. #define CHAR_BOLD_OFF        '\013'
  16. #define CHAR_MCLOGO        '\014'
  17. #define CHAR_TEXTONLY_START    '\016'
  18. #define CHAR_TEXTONLY_END    '\017'
  19. #define CHAR_XONLY_START    '\020'
  20. #define CHAR_XONLY_END        '\021'
  21. #define CHAR_TITLE_ON        '\022'
  22. #define CHAR_TITLE_OFF        '\023'
  23. #define CHAR_ITALIC_ON        '\024'
  24. #define CHAR_RESERVED        '\025'
  25. #define STRING_LINK_START    "\01"
  26. #define STRING_LINK_POINTER    "\02"
  27. #define STRING_LINK_END        "\03"
  28. #define STRING_NODE_END        "\04"
  29.  
  30. void interactive_display (char *filename, char *node);
  31. #endif    /* __HELP_H */
  32.